home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / bin / clouds < prev    next >
Text File  |  1995-07-22  |  398b  |  20 lines

  1. :
  2. # clouds - set the root window to my cloud-like fractal landscape thing
  3. #
  4. # written by Ronald Joe Record (rr@sco.com)
  5. #
  6.  
  7. BITMAP=/usr/include/X11/bitmaps/escherknot
  8. PIXMAP=/usr/skunk/pics/gif/xtopo/demo_640
  9. if [ -f /usr/skunk/bin/X11/xroot ]
  10. then
  11.     if [ -f $PIXMAP ]
  12.     then
  13.         /usr/skunk/bin/X11/xroot $PIXMAP &
  14.     else
  15.         /usr/skunk/bin/X11/xroot &
  16.     fi
  17. else
  18.     /usr/bin/X11/xsetroot -bitmap $BITMAP &
  19. fi
  20.